summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNarr the Reg <juangerman-13@hotmail.com>2022-10-01 21:37:55 +0200
committerGitHub <noreply@github.com>2022-10-01 21:37:55 +0200
commit181a54a37b0473259c3682cb24eaaad4313489a9 (patch)
treed81eaa1157878a142714f475c3a59bea57deed25
parentMerge pull request #8874 from vonchenplus/align_index_buffer_size (diff)
parentFix "controller.colors_state.right" being "left" (diff)
downloadyuzu-181a54a37b0473259c3682cb24eaaad4313489a9.tar
yuzu-181a54a37b0473259c3682cb24eaaad4313489a9.tar.gz
yuzu-181a54a37b0473259c3682cb24eaaad4313489a9.tar.bz2
yuzu-181a54a37b0473259c3682cb24eaaad4313489a9.tar.lz
yuzu-181a54a37b0473259c3682cb24eaaad4313489a9.tar.xz
yuzu-181a54a37b0473259c3682cb24eaaad4313489a9.tar.zst
yuzu-181a54a37b0473259c3682cb24eaaad4313489a9.zip
-rw-r--r--src/core/hid/emulated_controller.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hid/emulated_controller.cpp b/src/core/hid/emulated_controller.cpp
index 01c43be93..2cff279b1 100644
--- a/src/core/hid/emulated_controller.cpp
+++ b/src/core/hid/emulated_controller.cpp
@@ -93,7 +93,7 @@ void EmulatedController::ReloadFromSettings() {
.body = GetNpadColor(player.body_color_left),
.button = GetNpadColor(player.button_color_left),
};
- controller.colors_state.left = {
+ controller.colors_state.right = {
.body = GetNpadColor(player.body_color_right),
.button = GetNpadColor(player.button_color_right),
};